{% extends 'base_dashboard.html' %} {% block title %}Student Detail — Teacher{% endblock %} {% block content %}
| Name | {{ enrollment.student.get_display_name }} |
|---|---|
| Username | @{{ enrollment.student.username }} |
| {{ enrollment.student.email }} | |
| Phone | {{ enrollment.student.phone_number|default:"—" }} |
| Qualification | {{ enrollment.student.qualification|default:"—" }} |
| Last Degree | {{ enrollment.student.last_degree|default:"—" }} |
| Course | {{ enrollment.course.title }} |
|---|---|
| Status | {% if enrollment.status == 'approved' %} Active {% elif enrollment.status == 'pending' %} Awaiting admission {% else %} Not admitted {% endif %} |
| Requested | {{ enrollment.requested_at|date:"M d, Y H:i" }} |
| Admitted At | {{ enrollment.approved_at|date:"M d, Y H:i" }} |
Fees and payment approval are managed by Accounts Staff / Admin.